################################################################################
##
##   Hack Title:		easyUCP Custom Title add on
##   
##   Hack Author:		AmigaLink < Amiga@ms25.de >  
##			
##			
##			
##
##   Installation Level:	Easy 
##   Installation Time:		1 Minutes 
##
##   Files To Edit:		1
##
##				\includes\usercp_register.php
##
################################################################################
##
##  This hack is released under the GPL License. 
##
################################################################################
#
#----------[ PLEASE NOTE ]------------------------------
#
# After installing the Custom Title Mod

# 
#-----[ OPEN ]------------------------------------------ 
# 

includes/usercp_register.php 

# 
#-----[ FIND ]------------------------------------------ 
# 

	if ( $ucp_mode == 'ucp_info' || $ucp_mode == '' )
	{
		$template->assign_block_vars('switch_ucp_info', array() );

# 
#-----[ AFTER, ADD ]------------------------------------ 
# 

		if ($custom_title_activated == TRUE)
		{
			$template->assign_block_vars('switch_ucp_info.switch_custom_title', array() );
		}

# 
#-----[ FIND ]------------------------------------------ 
# 

   if ($custom_title_activated == TRUE) 
   { 
      $template->assign_block_vars('switch_custom_title', array() ); 
   } 

# 
#-----[ DELETE ]------------------------------------------ 
# 

   if ($custom_title_activated == TRUE) 
   { 
      $template->assign_block_vars('switch_custom_title', array() ); 
   }

#
#----------[ SAVE/CLOSE ALL FILES ]-----------------
#
#     EoM
